home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / utility / ffe101.zip / ANIM.SWG / 0006_FLI.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-03  |  2KB  |  38 lines

  1. --------a-FLIc------------------------------
  2.  
  3. The  Flic file format was one of  the first graphic animation formats on
  4. the  PC.  It was developed by <>  and  used by the Autodesk Animator. It
  5. provides  relatively fast animation in 320x200 resolution modes. The FLI
  6. use  delta  updating for faster  animation. The single block information
  7. and  prefix blocks are missing for the FLI files, see the FLT format for
  8. a discussion.
  9.  
  10. OFFSET              Count TYPE   Description
  11. 0000h                   1 dword  Size of the FLIc file
  12. 0004h                   1 word   ID=0AF11h
  13.                                  AF11h means the file is a FLI file.
  14. 0006h                   1 word   Number of frames
  15. 0008h                   1 word   Width of displayed animation
  16. 000Ah                   1 word   Height of displayed animation
  17. 000Ch                   1 word   Number of used colors ("Depth")
  18. 000Eh                   1 word   Flags (=0003h)
  19. 0010h                   1 dword  Frame speed in sec/1024 **
  20. 0014h                   1 word   reserved
  21. 0016h                   1 dword  Date/Time of creation in DOS format
  22. 001Ah                   1 dword  Creator
  23. 001Eh                   1 dword  Date/Time of last change in DOS format
  24. 0022h                   1 dword  Serial number? of changer
  25. 0026h                   1 word   X-Aspect ratio of animation
  26. 0028h                   1 word   Y-Aspect ratio of animation
  27. 002Ah                  38 byte   reserved
  28. 0052h                   1 dword  Offset of frame 1 in file
  29. 0056h                   1 dword  Offset of frame 2 in file
  30. 005Ah                  40 byte   reserved
  31.  
  32. EXTENSION:FLI,FLT
  33. OCCURENCES:PC
  34. REFERENCE:DDJ0693
  35. PROGRAMS:Autodesk Animator
  36. SEE ALSO:QuickTime,AVI,FLT
  37.  
  38.